home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- Rem ZIP2-FSZ.BAT - Finds Size of ZIP2-FSZ. and writes to Environment FSIZE.
- Rem Finds Time and Date of ZIP2-FSZ. and writes to Environment ZDATE and ZTIME.
- Rem ZIP2-FSZ. is created by some other calling batch file.
-
- IF Not "%1"=="" GoTo REDUX
- Set FSIZE=
- IF NOT Exist ZIP2-FSZ. Echo Source File ZIP2-FSZ. Does Not Exist!
- IF NOT Exist ZIP2-FSZ. GoTo End
- Dir ZIP2-FSZ. | Find "ZIP2-FSZ" >TEMP_$$$.BAT
- TEMP_$$$.BAT
- :REDUX
- Rem %1 is Size, %2 is Date, %3 is Time
- SET FSIZE=%1
- SET ZDATE=%2
- SET ZTIME=%3
- Del TEMP_$$$.BAT >Nul
- Del ZIP2-FSZ. >Nul
- :End
-